body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#progressBar {
    position: absolute;
    top: 95%;
    left: 40%;
    width: 20%;
    height: 10px;
    background-color: #f3f3f3;
    border-radius: 25px;
    overflow: hidden;
}
#progress {
    width: 0%;
    height: 10px;
    background: linear-gradient(90deg, #007bf6, #8bc34a);
    border-radius: 25px;
    transition: width 0.3s ease-in-out;
}
